crypto/tls.clientHandshakeStateTLS13.transcript (field)

30 uses

	crypto/tls (current package)
		handshake_client_tls13.go#L37: 	transcript    hash.Hash
		handshake_client_tls13.go#L65: 	hs.transcript = hs.suite.hash.New()
		handshake_client_tls13.go#L67: 	if err := transcriptMsg(hs.hello, hs.transcript); err != nil {
		handshake_client_tls13.go#L102: 			hs.transcript = hs.echContext.innerTranscript
		handshake_client_tls13.go#L119: 	if err := transcriptMsg(hs.serverHello, hs.transcript); err != nil {
		handshake_client_tls13.go#L240: 	chHash := hs.transcript.Sum(nil)
		handshake_client_tls13.go#L241: 	hs.transcript.Reset()
		handshake_client_tls13.go#L242: 	hs.transcript.Write([]byte{typeMessageHash, 0, 0, uint8(len(chHash))})
		handshake_client_tls13.go#L243: 	hs.transcript.Write(chHash)
		handshake_client_tls13.go#L244: 	if err := transcriptMsg(hs.serverHello, hs.transcript); err != nil {
		handshake_client_tls13.go#L386: 	if _, err := hs.c.writeHandshakeRecord(hs.hello, hs.transcript); err != nil {
		handshake_client_tls13.go#L492: 	clientSecret := handshakeSecret.ClientHandshakeTrafficSecret(hs.transcript)
		handshake_client_tls13.go#L494: 	serverSecret := handshakeSecret.ServerHandshakeTrafficSecret(hs.transcript)
		handshake_client_tls13.go#L525: 	msg, err := c.readHandshake(hs.transcript)
		handshake_client_tls13.go#L607: 	msg, err := c.readHandshake(hs.transcript)
		handshake_client_tls13.go#L616: 		msg, err = c.readHandshake(hs.transcript)
		handshake_client_tls13.go#L668: 	signed := signedMessage(serverSignatureContext, hs.transcript)
		handshake_client_tls13.go#L676: 	if err := transcriptMsg(certVerify, hs.transcript); err != nil {
		handshake_client_tls13.go#L700: 	expectedMAC := hs.suite.finishedHash(c.in.trafficSecret, hs.transcript)
		handshake_client_tls13.go#L706: 	if err := transcriptMsg(finished, hs.transcript); err != nil {
		handshake_client_tls13.go#L712: 	hs.trafficSecret = hs.masterSecret.ClientApplicationTrafficSecret(hs.transcript)
		handshake_client_tls13.go#L713: 	serverSecret := hs.masterSecret.ServerApplicationTrafficSecret(hs.transcript)
		handshake_client_tls13.go#L729: 	c.ekm = hs.suite.exportKeyingMaterial(hs.masterSecret, hs.transcript)
		handshake_client_tls13.go#L742: 		if _, err := hs.c.writeHandshakeRecord(&certificateMsgTLS13{}, hs.transcript); err != nil {
		handshake_client_tls13.go#L764: 	if _, err := hs.c.writeHandshakeRecord(certMsg, hs.transcript); err != nil {
		handshake_client_tls13.go#L789: 	signed := signedMessage(clientSignatureContext, hs.transcript)
		handshake_client_tls13.go#L801: 	if _, err := hs.c.writeHandshakeRecord(certVerifyMsg, hs.transcript); err != nil {
		handshake_client_tls13.go#L812: 		verifyData: hs.suite.finishedHash(c.out.trafficSecret, hs.transcript),
		handshake_client_tls13.go#L815: 	if _, err := hs.c.writeHandshakeRecord(finished, hs.transcript); err != nil {
		handshake_client_tls13.go#L822: 		c.resumptionSecret = hs.masterSecret.ResumptionMasterSecret(hs.transcript)